g_object_class_install_properties (gobject_class, NUM_PROPERTIES, progress_props);
+ /**
+ * GtkProgressBar:xspacing:
+ *
+ * Extra spacing applied to the width of a progress bar.
+ *
+ * Deprecated: 3.20: Use the standard CSS padding and margins; the
+ * value of this style property is ignored.
+ */
gtk_widget_class_install_style_property (widget_class,
g_param_spec_int ("xspacing",
P_("X spacing"),
0, G_MAXINT, 2,
G_PARAM_READWRITE));
+ /**
+ * GtkProgressBar:yspacing:
+ *
+ * Extra spacing applied to the height of a progress bar.
+ *
+ * Deprecated: 3.20: Use the standard CSS padding and margins; the
+ * value of this style property is ignored.
+ */
gtk_widget_class_install_style_property (widget_class,
g_param_spec_int ("yspacing",
P_("Y spacing"),
PangoRectangle logical_rect;
PangoLayout *layout;
gint width;
- gint xspacing;
gint bar_width;
g_return_if_fail (GTK_IS_PROGRESS_BAR (widget));
if (priv->show_text)
{
- gtk_widget_style_get (widget,
- "xspacing", &xspacing,
- NULL);
- width += xspacing;
-
buf = get_current_text (pbar);
layout = gtk_widget_create_pango_layout (widget, buf);
PangoRectangle logical_rect;
PangoLayout *layout;
gint height;
- gint yspacing;
gint bar_height;
g_return_if_fail (GTK_IS_PROGRESS_BAR (widget));
if (priv->show_text)
{
- gtk_widget_style_get (widget,
- "yspacing", &yspacing,
- NULL);
- height += yspacing;
-
buf = get_current_text (pbar);
layout = gtk_widget_create_pango_layout (widget, buf);